home *** CD-ROM | disk | FTP | other *** search
/ Workplace Effectiveness:…ecision-Making Strategies / Workplace Effectiveness: Decision-Making Strategies.iso / pc / Files / Menu1.dxr / 00009_Go movie behavior.ls < prev    next >
Encoding:
Text File  |  1998-12-16  |  715 b   |  32 lines

  1. property clicked, movieChoice
  2.  
  3. on mouseDown me
  4.   set the clicked of me to 1
  5. end
  6.  
  7. on mouseUp me
  8.   if the clicked of me then
  9.     sound stop 1
  10.     sound stop 2
  11.     puppetSound(0)
  12.     go(1, the movieChoice of me)
  13.   end if
  14. end
  15.  
  16. on mouseUpOutSide me
  17.   set the clicked of me to 0
  18. end
  19.  
  20. on beginSprite me
  21.   set the clicked of me to 0
  22. end
  23.  
  24. on getPropertyDescriptionList
  25.   set p_list to [#movieChoice: [#comment: "Movie to open with this button:", #format: #string, #default: EMPTY]]
  26.   return p_list
  27. end
  28.  
  29. on getBehaviorDescription
  30.   return "Navigate to another movie on mouseUp, based on property movieChoice." & RETURN & "Also stops any running audio/sounds." & RETURN & "Works only if mouseDown occured on this sprite."
  31. end
  32.